 2
      

 Python:
s = int(input())
t = int(input())
A = int(input())
if (s<=-3) or (t<=A):
  print("YES")
else:
  print("NO")

 :


 s, t, A
 s
 t
 A
 (s<=-3)  (t<=A)
    ""
    "
"


 Pascal:
var s,t,A:Integer;
begin
  readln(s);
  readln(t);
  readln(A);
  if (s<=-3) or (t<=A)
  then
    writeln('YES')
  else
    writeln('NO');
end.

  9  ,       s  t    :
((1, 2), (11, 2), (1, 12), (11, 12), (-11, -12), (-11, 12), (-12, 11), (10, 10), (10, 5))
    ,         "NO"  ?

: 5: [5, 6, 7, 8, 9]